home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / netinet / RCS / in_systm.h,v < prev    next >
Text File  |  1988-06-29  |  2KB  |  79 lines

  1. head     1.2;
  2. access   ;
  3. symbols  ;
  4. locks    ; strict;
  5. comment  @ * @;
  6.  
  7.  
  8. 1.2
  9. date     88.06.29.15.11.02;  author ouster;  state Exp;
  10. branches ;
  11. next     1.1;
  12.  
  13. 1.1
  14. date     88.06.21.11.59.26;  author ouster;  state Exp;
  15. branches ;
  16. next     ;
  17.  
  18.  
  19. desc
  20. @@
  21.  
  22.  
  23. 1.2
  24. log
  25. @Add ifdefs to keep files from being processed twice.
  26. @
  27. text
  28. @/*
  29.  * Copyright (c) 1982, 1986 Regents of the University of California.
  30.  * All rights reserved.
  31.  *
  32.  * Redistribution and use in source and binary forms are permitted
  33.  * provided that this notice is preserved and that due credit is given
  34.  * to the University of California at Berkeley. The name of the University
  35.  * may not be used to endorse or promote products derived from this
  36.  * software without specific prior written permission. This software
  37.  * is provided ``as is'' without express or implied warranty.
  38.  *
  39.  *    @@(#)in_systm.h    7.2 (Berkeley) 12/7/87
  40.  */
  41.  
  42. #ifndef _IN_SYSTM
  43. #define _IN_SYSTM
  44.  
  45. /*
  46.  * Miscellaneous internetwork
  47.  * definitions for kernel.
  48.  */
  49.  
  50. /*
  51.  * Network types.
  52.  *
  53.  * Internally the system keeps counters in the headers with the bytes
  54.  * swapped so that VAX instructions will work on them.  It reverses
  55.  * the bytes before transmission at each protocol level.  The n_ types
  56.  * represent the types with the bytes in ``high-ender'' order.
  57.  */
  58. typedef u_short n_short;        /* short as received from the net */
  59. typedef u_long    n_long;            /* long as received from the net */
  60.  
  61. typedef    u_long    n_time;            /* ms since 00:00 GMT, byte rev */
  62.  
  63. #ifdef KERNEL
  64. n_time    iptime();
  65. #endif
  66.  
  67. #endif _IN_SYSTM
  68. @
  69.  
  70.  
  71. 1.1
  72. log
  73. @Initial revision
  74. @
  75. text
  76. @d15 3
  77. d39 2
  78. @
  79.